home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / automake.0 / automake / automake-1.0 / tests / libobj.test < prev    next >
Encoding:
Text File  |  1996-05-18  |  478 b   |  29 lines

  1. #!/bin/sh
  2.  
  3. # Test for bug reported by Jim Meyering:
  4. # automake-0.29 didn't handle this line properly.
  5. #   LIBOBJS="$LIBOBJS fsusage.o mountlist.o"
  6.  
  7. . $srcdir/defs || exit 1
  8.  
  9. cat > configure.in << 'END'
  10. PACKAGE=nonesuch
  11. VERSION=nonesuch
  12. AC_ARG_PROGRAM
  13. AC_PROG_INSTALL
  14. AC_PROG_RANLIB
  15. LIBOBJS="$LIBOBJS fsusage.o mountlist.o"
  16. AC_OUTPUT(Makefile)
  17. END
  18.  
  19. cat > Makefile.am << 'END'
  20. noinst_LIBRARIES = tu
  21. tu_SOURCES =
  22. tu_LIBADD = @LIBOBJS@
  23. END
  24.  
  25. : > fsusage.c
  26. : > mountlist.c
  27.  
  28. $AUTOMAKE
  29.